home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 September / PCWorld_2007-09_cd.bin / v cisle / wireshark / wireshark-setup-0.99.6a.exe / snmp / mibs / SMUX-MIB.txt < prev    next >
Text File  |  2005-02-08  |  5KB  |  159 lines

  1. SMUX-MIB DEFINITIONS ::= BEGIN
  2.  
  3. IMPORTS
  4.         enterprises
  5.                 FROM RFC1155-SMI
  6.         OBJECT-TYPE
  7.                 FROM RFC1212;
  8.  
  9. unix    OBJECT IDENTIFIER ::= { enterprises 4 }
  10.  
  11. smux    OBJECT IDENTIFIER ::= { unix 4 }
  12.  
  13. smuxPeerTable   OBJECT-TYPE
  14.         SYNTAX  SEQUENCE OF SmuxPeerEntry
  15.         ACCESS  not-accessible
  16.         STATUS  mandatory
  17.         DESCRIPTION
  18.             "The SMUX peer table."
  19.         ::= { smux 1 }
  20.  
  21. smuxPeerEntry   OBJECT-TYPE
  22.         SYNTAX  SmuxPeerEntry
  23.         ACCESS  not-accessible
  24.         STATUS  mandatory
  25.         DESCRIPTION
  26.             "An entry in the SMUX peer table."
  27.         INDEX   { smuxPindex }
  28.         ::= { smuxPeerTable 1}
  29.  
  30. SmuxPeerEntry ::=
  31.     SEQUENCE {
  32.         smuxPindex
  33.             INTEGER,
  34.         smuxPidentity
  35.             OBJECT IDENTIFIER,
  36.         smuxPdescription
  37.             DisplayString,
  38.         smuxPstatus
  39.             INTEGER
  40.     }
  41.  
  42. smuxPindex      OBJECT-TYPE
  43.         SYNTAX  INTEGER
  44.         ACCESS  read-only
  45.         STATUS  mandatory
  46.         DESCRIPTION
  47.             "An index which uniquely identifies a SMUX peer."
  48.         ::= { smuxPeerEntry 1 }
  49.  
  50. smuxPidentity   OBJECT-TYPE
  51.         SYNTAX  OBJECT IDENTIFIER
  52.         ACCESS  read-only
  53.         STATUS  mandatory
  54.         DESCRIPTION
  55.             "The authoritative designation for a SMUX peer."
  56.         ::= { smuxPeerEntry 2 }
  57.  
  58. smuxPdescription OBJECT-TYPE
  59.         SYNTAX  DisplayString (SIZE (0..255))
  60.         ACCESS  read-only
  61.         STATUS  mandatory
  62.         DESCRIPTION
  63.             "A human-readable description of a SMUX peer."
  64.         ::= { smuxPeerEntry 3 }
  65.  
  66. smuxPstatus     OBJECT-TYPE
  67.         SYNTAX  INTEGER { valid(1), invalid(2), connecting(3) }
  68.         ACCESS  read-write
  69.         STATUS  mandatory
  70.         DESCRIPTION
  71.             "The type of SMUX peer.
  72.  
  73.             Setting this object to the value invalid(2) has
  74.             the effect of invaliding the corresponding entry
  75.             in the smuxPeerTable.  It is an implementation-
  76.             specific matter as to whether the agent removes an
  77.             invalidated entry from the table.  Accordingly,
  78.             management stations must be prepared to receive
  79.             tabular information from agents that correspond to
  80.             entries not currently in use.  Proper
  81.             interpretation of such entries requires
  82.             examination of the relative smuxPstatus object."
  83.         ::= { smuxPeerEntry 4 }
  84.  
  85. smuxTreeTable   OBJECT-TYPE
  86.         SYNTAX  SEQUENCE OF SmuxTreeEntry
  87.         ACCESS  not-accessible
  88.         STATUS  mandatory
  89.         DESCRIPTION
  90.             "The SMUX tree table."
  91.         ::= { smux 2 }
  92.  
  93. smuxTreeEntry   OBJECT-TYPE
  94.         SYNTAX  SmuxTreeEntry
  95.         ACCESS  not-accessible
  96.         STATUS  mandatory
  97.         DESCRIPTION
  98.             "An entry in the SMUX tree table."
  99.         INDEX   { smuxTsubtree, smuxTpriority }
  100.         ::= { smuxTreeTable 1}
  101.  
  102. SmuxTreeEntry ::=
  103.     SEQUENCE {
  104.         smuxTsubtree
  105.             OBJECT IDENTIFIER,
  106.         smuxTpriority
  107.             INTEGER,
  108.         smuxTindex
  109.             INTEGER,
  110.         smuxTstatus
  111.             INTEGER
  112.     }
  113.  
  114. smuxTsubtree    OBJECT-TYPE
  115.         SYNTAX  OBJECT IDENTIFIER
  116.         ACCESS  read-only
  117.         STATUS  mandatory
  118.         DESCRIPTION
  119.             "The MIB subtree being exported by a SMUX peer."
  120.         ::= { smuxTreeEntry 1 }
  121.  
  122. smuxTpriority OBJECT-TYPE
  123.         SYNTAX  INTEGER (0..'07fffffff'h)
  124.         ACCESS  read-only
  125.         STATUS  mandatory
  126.         DESCRIPTION
  127.             "The SMUX peer's priority when exporting the MIB
  128.             subtree."
  129.         ::= { smuxTreeEntry 2 }
  130.  
  131. smuxTindex OBJECT-TYPE
  132.         SYNTAX  INTEGER
  133.         ACCESS  read-only
  134.         STATUS  mandatory
  135.         DESCRIPTION
  136.             "The SMUX peer's identity."
  137.         ::= { smuxTreeEntry 3 }
  138.  
  139. smuxTstatus     OBJECT-TYPE
  140.         SYNTAX  INTEGER { valid(1), invalid(2) }
  141.         ACCESS  read-write
  142.         STATUS  mandatory
  143.         DESCRIPTION
  144.             "The type of SMUX tree.
  145.  
  146.             Setting this object to the value invalid(2) has
  147.             the effect of invaliding the corresponding entry
  148.             in the smuxTreeTable.  It is an implementation-
  149.             specific matter as to whether the agent removes an
  150.             invalidated entry from the table.  Accordingly,
  151.             management stations must be prepared to receive
  152.             tabular information from agents that correspond to
  153.             entries not currently in use.  Proper
  154.             interpretation of such entries requires
  155.             examination of the relative smuxTstatus object."
  156.         ::= { smuxTreeEntry 4 }
  157.  
  158. END
  159.